OnStartCallbackType
import { OnStartCallbackType } from "@hyper-fetch/react"
Description
Defined in helpers/use-command-events/use-command-events.types.ts:101
Preview
type OnStartCallbackType<Command> = (params: { command: Command; details: CommandEventDetails<Command> }) => void | Promise<void>;
Structure
(params: [object Object]) => void | Promise<void>